
<style>
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    background-image: url(images/paddy\ image.png);
    background-size: 120%;
    background-repeat: no-repeat;
    padding: 10px 20px;
  }
  
  .logo img {
    height: 150px; /* Adjust logo size */
    width: 400px;
  }
  
  /* Navigation Links Styles */
  .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li {
    display:inline-block;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: #575757;
    border-radius: 4px;
  }


  .mainheading{
    padding-top: 20px;
    font-size: 40px;
    text-align: center;
  }

 * {
      margin: 0;
      padding: 0;
    }

    .scrolling-text-wrapper {
      width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .scrolling-text {
      font-family: "Anek Telugu", sans-serif;
      color: rgb(118, 5, 5);
      display: inline-block;
      white-space: nowrap;
      animation: scroll 60s linear infinite;
    }

    @keyframes scroll {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }


  .box, .box1 {
    border: 4px inset #f8fc00;
    padding: 20px;
    width: fit-content;
    max-width: 400px;
    background-color: #1b066e;
    box-shadow: black 10px 0px 10px;
}

.Prices {
  display: flex;
  flex-wrap: wrap; /* Allows the boxes to wrap on small screens */
  justify-content:space-evenly; /* Space between the divs */
  padding: 20px;
  gap: 50px; /* Adds gap between the divs */
}

.header-container{
    display:flex;
    align-items:center;
}

.heading{
    font-family: "Anek Telugu", sans-serif;
    font-weight: 800;
    font-size: 24px;
    color:goldenrod;
    font-weight: bold;
    margin-left: 10px;
}
.values{
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 10px;
    font-family: "Sree Krushnadevaraya", serif;
    color: aliceblue;
    line-height: 2;
    top: -6px;
}
.logo {
    width: 50px; /* Adjust width as needed */
    position: relative;
    left: -6px;
    height: auto;
  }

  section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #333;
    line-height: 1.2; /* Set line height */
  }

  .tedi {
    font-size: 18px;
    color: #444;
    margin: 0;
  }

  .red-text {
    color: red;
  }

  /* Responsive Design */
  @media screen and (max-width: 768px) {
    section {
      padding: 15px;
    }

    .tedi {
      font-size: 16px;
    }
  }

  @media screen and (max-width: 480px) {
    .tedi {
      font-size: 14px;
    }
  }


  .rules{
    width: auto;
    background-color: chartreuse;
  }

  .slides{
  }

    /* Slideshow container */
    .slideshow-container {
      width: 100%; /* Takes up full width */
      position: relative;
      margin: auto;
      aspect-ratio: 6 / 1; /* Width to height ratio 4:1 */
      overflow: hidden;
      height:100%;
    }
    
    /* Slides styling */
    .mySlides {
      display: none; /* Hide all slides initially */
    }
    
    .slide {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures the image covers the entire area */
    }
    
    /* Fading effect */
    .fade {
      animation: fade 2s ease-in-out;
    }
    
    @keyframes fade {
      from {opacity: .4;}
      to {opacity: 1;}
    }
    
    /* Toggle Buttons */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
    }
    
    .prev {
      left: 0;
      border-radius: 3px 0 0 3px;
    }
    
    .next {
      right: 0;
      border-radius: 0 3px 3px 0;
    }
    
    .prev:hover, .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }
    
    /* Responsive design */
    @media (max-width: 768px) {
      .prev, .next {
        font-size: 14px;
        padding: 12px;
      }
    }
    
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: row;
      gap: 20px;
    }
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  section {
    padding: 20px;
    background-color: #f0f0f0;
  }

  h1 {
    font-family: "Sree Krushnadevaraya", serif;
    text-align: center;
    line-height: 1;
    padding-bottom: 10px;
    font-size: 100px;
    color: #d30404;
  }

  .h3-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
    gap: 15px;
    margin-top: 20px;
  }

  h3 {
    padding: 15px;
    text-align: center;
    color: white;
    border-radius: 5px;
  }

  .h3-1 { background-color: #020e2d; font-family: "Anek Telugu", serif; font-size: 20px;  display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;  /* Centers vertically */}
  .h3-2 { background-color: #055495; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}
  .h3-3 { background-color: #025206; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}
  .h3-4 { background-color: #814e03; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}
  .h3-5 { background-color: #4d0859; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}
  .h3-6 { background-color: #045d54; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}
  .h3-7 { background-color: #061357; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}
  .h3-8 { background-color: #620505; font-family: "Anek Telugu", serif; font-size: 20px; line-height: 1.5;}

  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .h3-container {
      grid-template-columns: 1fr; /* 1 column for small screens */
    }
  }

  body {
    font-family: "Anek Telugu", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}
.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
h1 {
    text-align: center;
    font-family: "Anek Telugu", sans-serif;
    font-size: 4rem;
    color: #6b0404;
    margin-bottom: 20px;
}
p {
    font-size: 1.2rem;
    font-family: "Anek Telugu", sans-serif;
    color: #333;
    line-height: 1.5;
}
.note {
    margin-top: 20px;
    padding: 15px;
    font-weight: 800;
    background-color: #e9b2b1;
    border-left: 5px solid #830404;
}
@media (max-width: 600px) {
    .container {
        padding: 10px;
        margin: 10px;
    }
    h1 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
}

body {
  font-family: "Anek Telugu", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}
.container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
h1 {
  text-align: center;
  font-family: "Anek Telugu", sans-serif;
  font-size: 3rem;
  color: #890909;
  margin-bottom: 20px;
}
.contact-item {
  font-family: "Anek Telugu", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.phone-number {
  color: red;
  font-weight: bold;
}
.contact-name {
  color: #090671;
  font-weight: bold;
}
.note {
  margin-top: 20px;
  padding: 15px;
  background-color: #eaf8ff;
  border-left: 5px solid #0077b6;
}
@media (max-width: 600px) {
  .container {
      padding: 10px;
      margin: 10px;
  }
  h1 {
      font-size: 1.5rem;
  }
  .contact-item {
      font-size: 1rem;
  }
}


body {
  margin: 0;
  padding: 0;
  font-family: "Anek Telugu", sans-serif;
}
.footer {
  background-color: #020e2d;
  color: white;
  text-align: center;
  padding: 20px 0;
  width: 100%;
}
.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.2rem;
}
.footer-phone {
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}
.footer-made {
  font-size: 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  .footer-phone, .footer-made {
      margin-top: 10px;
  }
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.team-member {
  display: inline-block;
  width: 250px;
  margin: 20px;
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 22px;
  margin: 10px 0 5px 0;
  color: #020e2d;
}

.team-member p {
  font-size: 16px;
  color: #555;
}

@media screen and (max-width: 768px) {
  .team-member {
      width: 100%;
  }

  .team-member img {
      width: 120px;
      height: 120px;
  }

  h1 {
      font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .team-member img {
      width: 100px;
      height: 100px;
  }

  h1 {
      font-size: 24px;
  }
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #020e2d;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  display: inline-block;
  width: 250px;
  margin: 20px;
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #020e2d; /* Optional: border around the images */
}

.team-member h3 {
  font-size: 22px;
  margin: 10px 0 5px 0;
  color: #020e2d;
}

.team-member p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .team-member {
      width: 100%;
  }

  .team-member img {
      width: 120px;
      height: 120px;
  }

  h1 {
      font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .team-member img {
      width: 100px;
      height: 100px;
  }

  h1 {
      font-size: 24px;
  }
}




</style>